home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 0.9.1.3 stable / flock-0.9.1.3.en-US.win32.exe / flock / chrome / classic.jar / skin / classic / global / scrollbox.css < prev    next >
Cascading Style Sheet File  |  2006-08-23  |  3KB  |  108 lines

  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2.  
  3. /*
  4.  * Scroll arrows
  5.  */
  6.  
  7. /* Horizonal enabled */
  8. .autorepeatbutton-up[orient="horizontal"],
  9. .autorepeatbutton-down[chromedir="rtl"][orient="horizontal"],
  10. .scrollbutton-up[orient="horizontal"],
  11. .scrollbutton-down[chromedir="rtl"][orient="horizontal"]
  12.   {
  13.     list-style-image      : url("chrome://global/skin/arrow/arrow-lft.gif");
  14.     -moz-image-region     : auto; /* cut off inheritance */
  15.   }
  16.  
  17. .autorepeatbutton-down[orient="horizontal"],
  18. .autorepeatbutton-up[chromedir="rtl"][orient="horizontal"],
  19. .scrollbutton-down[orient="horizontal"],
  20. .scrollbutton-up[chromedir="rtl"][orient="horizontal"]
  21.   {
  22.     list-style-image      : url("chrome://global/skin/arrow/arrow-rit.gif");
  23.     -moz-image-region     : auto; /* cut off inheritance */
  24.   }
  25.  
  26.  /* Horizonal disabled */
  27. .autorepeatbutton-up[orient="horizontal"][disabled="true"],
  28. .autorepeatbutton-down[chromedir="rtl"][orient="horizontal"][disabled="true"],
  29. .scrollbutton-up[orient="horizontal"][disabled="true"],
  30. .scrollbutton-down[chromedir="rtl"][orient="horizontal"][disabled="true"]
  31.   {
  32.     list-style-image      : url("chrome://global/skin/arrow/arrow-lft-dis.gif");
  33.     -moz-image-region     : auto; /* cut off inheritance */
  34.   }
  35.  
  36. .autorepeatbutton-down[orient="horizontal"][disabled="true"],
  37. .autorepeatbutton-up[chromedir="rtl"][orient="horizontal"][disabled="true"],
  38. .scrollbutton-down[orient="horizontal"][disabled="true"],
  39. .scrollbutton-up[chromedir="rtl"][orient="horizontal"][disabled="true"]
  40.   {
  41.     list-style-image      : url("chrome://global/skin/arrow/arrow-rit-dis.gif");
  42.     -moz-image-region     : auto; /* cut off inheritance */
  43.   }
  44.  
  45. /* Vertical enabled */
  46. .autorepeatbutton-up,
  47. .scrollbutton-up
  48.   {
  49.     list-style-image      : url("chrome://global/skin/arrow/arrow-up.gif");
  50.     -moz-image-region     : auto; /* cut off inheritance */
  51.   }
  52.  
  53. .autorepeatbutton-down,
  54. .scrollbutton-down
  55.   {
  56.     list-style-image      : url("chrome://global/skin/arrow/arrow-dn.gif");
  57.     -moz-image-region     : auto; /* cut off inheritance */
  58.   }
  59.  
  60. /* Vertical disabled */
  61. .autorepeatbutton-up[disabled="true"],
  62. .scrollbutton-up[disabled="true"]
  63.   {
  64.     list-style-image      : url("chrome://global/skin/arrow/arrow-up-dis.gif");
  65.     -moz-image-region     : auto; /* cut off inheritance */
  66.   }
  67.  
  68. .autorepeatbutton-down[disabled="true"],
  69. .scrollbutton-down[disabled="true"]
  70.   {
  71.     list-style-image      : url("chrome://global/skin/arrow/arrow-dn-dis.gif");
  72.     -moz-image-region     : auto; /* cut off inheritance */
  73.   }
  74.  
  75. .scrollbutton-up > .toolbarbutton-text,
  76. .scrollbutton-down > .toolbarbutton-text {
  77.   display: none;
  78. }
  79.  
  80. autorepeatbutton,
  81. .scrollbutton-up,
  82. .scrollbutton-down
  83.   {
  84.     -moz-box-align        : center;
  85.     -moz-box-pack         : center;
  86.     margin-top: 1px;
  87.     margin-bottom: 2px;
  88.     -moz-margin-start: 1px;
  89.     -moz-margin-end: 2px;
  90.   }
  91.  
  92. autorepeatbutton
  93.   {
  94.     border                : 1px solid transparent;
  95.     padding               : 1px;
  96.   }
  97.  
  98. autorepeatbutton:hover,
  99. autorepeatbutton:hover:active
  100.   {
  101.     margin                : 1px;
  102.     border                : 1px inset ThreeDFace;
  103.     padding-top: 2px;
  104.     padding-bottom: 1px;
  105.     -moz-padding-start: 2px;
  106.     -moz-padding-end: 1px;
  107.   }
  108.